home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // CLine.h
- //
- //***********************************************************************
-
- class CLine : public CObject
- {
- DECLARE_SERIAL (CLine)
-
- private:
- CPoint m_ptFrom;
- CPoint m_ptTo;
- UINT m_nWidth;
- COLORREF m_crColor;
-
- public:
- CLine () {}
- CLine (CPoint, CPoint, UINT, COLORREF);
- virtual void Serialize (CArchive&);
- virtual void Draw (CDC*);
- CString GetDescription ();
- };
-